e6ff8363ca7c22a3074670adcde05fcbafc4daf4,android/lib/app/src/test/java/com/kodroid/pilot/lib/stack/PilotStackTest.java,PilotStackTest,popStackAtFrameType_threeFramesSameTypePopBottomInclusive_listenerCalledEmpty,#,135
Before Change
PilotStack pilotStack = new PilotStack();
PilotFrame testUIFrame1 = new TestUIFrame1();
pilotStack.pushFrame(testUIFrame1);
PilotFrame testUIFrame2 = new TestUIFrame2();
pilotStack.pushFrame(testUIFrame2);
pilotStack.pushFrame(new TestUIFrame3());
//add listener
After Change
public void popStackAtFrameType_threeFramesSameTypePopBottomInclusive_listenerCalledEmpty()
{
PilotStack pilotStack = new PilotStack();
pilotStack.pushFrame(TestUIFrame1.class);
pilotStack.pushFrame(TestUIFrame2.class);
pilotStack.pushFrame(TestUIFrame3.class);